// File:       stdexcept.c++
// Version:    1.00
// Author:     (c) Miles Sabin, 1996
// Purpose:    approximation to ANSI C++ standard exception classes

// Change log:
//  30/12/96   v. 1.00

#include "stdexcept.h"


// Implementation of logic_error

logic_error::logic_error(char const* what_arg)
  : what_(what_arg)
  {}

logic_error::~logic_error()
  {}

char const* logic_error::what() const
  { return what_; }

RTTI_SCAFFOLDING_DEFN_1(logic_error, exception)


